home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmAddIn
- BorderStyle = 3 'Fixed Dialog
- Caption = "Event Monitor"
- ClientHeight = 4845
- ClientLeft = 2175
- ClientTop = 1935
- ClientWidth = 8070
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4845
- ScaleWidth = 8070
- StartUpPosition = 2 'CenterScreen
- Begin VB.ListBox List1
- Height = 4545
- Left = 120
- TabIndex = 1
- Top = 120
- Width = 6495
- End
- Begin VB.CommandButton cmdClose
- Caption = "Close"
- Height = 375
- Left = 6780
- TabIndex = 0
- Top = 120
- Width = 1215
- End
- Attribute VB_Name = "frmAddIn"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Public Sub AddEvent(Desc As String)
- List1.AddItem Desc
- List1.ListIndex = List1.NewIndex
- End Sub
- Private Sub cmdClose_Click()
- Unload Me
- End Sub
-